[dbo].[TempDeleteSystemConfigVar]
SQLServer
>
iMIS1521GA
>
Stored Procedures
> dbo.TempDeleteSystemConfigVar
Properties
Parameters
SQL Script
Uses
Properties
Property
Value
ANSI Nulls On
Quoted Identifier On
Parameters
Name
Data Type
Max Length (Bytes)
@ParameterName
nvarchar(255)
510
SQL Script
CREATE
PROCEDURE
TempDeleteSystemConfigVar
@ParameterName
nvarchar
(
255
)
AS
BEGIN
DECLARE
@PropertyDefinitionKey
uniqueidentifier
SELECT
@PropertyDefinitionKey
=
PropertyDefinitionKey
FROM
SystemConfigParameterRef
WHERE
ParameterName
=
@ParameterName
DELETE
FROM
SystemConfig
WHERE
ParameterName
=
@ParameterName
DELETE
FROM
SystemConfigPageParameterRef
WHERE
ParameterName
=
@ParameterName
DELETE
FROM
SystemConfigParameterRef
WHERE
ParameterName
=
@ParameterName
DELETE
FROM
PropertyDefinition
WHERE
PropertyDefinitionKey
=
@PropertyDefinitionKey
END
GO
Uses
[dbo].[PropertyDefinition]
[dbo].[SystemConfig]
[dbo].[SystemConfigPageParameterRef]
[dbo].[SystemConfigParameterRef]
dbo